home *** CD-ROM | disk | FTP | other *** search
/ Mac Easy 2010 May / Mac Life Ubuntu.iso / casper / filesystem.squashfs / usr / src / linux-headers-2.6.28-15 / arch / arm / plat-mxc / Kconfig next >
Encoding:
Text File  |  2009-09-09  |  1.8 KB  |  79 lines

  1. if ARCH_MXC
  2.  
  3. menu "Freescale MXC Implementations"
  4.  
  5. choice
  6.     prompt "MXC/iMX Base Type"
  7.     default ARCH_MX3
  8.  
  9. config ARCH_MX2
  10.     bool "MX2-based"
  11.     help
  12.       This enables support for systems based on the Freescale i.MX2 family
  13.  
  14. config ARCH_MX3
  15.     bool "MX3-based"
  16.     help
  17.       This enables support for systems based on the Freescale i.MX3 family
  18.  
  19. config ARCH_MX51
  20.     bool "MX51-based"
  21.     help
  22.       This enables support for systems based on Freescale i.MX51
  23.  
  24. endchoice
  25.  
  26. source "arch/arm/mach-mx2/Kconfig"
  27. source "arch/arm/mach-mx3/Kconfig"
  28. source "arch/arm/mach-mx51/Kconfig"
  29.  
  30. endmenu
  31.  
  32. config MXC_IRQ_PRIOR
  33.     bool "Use IRQ priority"
  34.     depends on ARCH_MXC
  35.     help
  36.       Select this if you want to use prioritized IRQ handling.
  37.       This feature prevents higher priority ISR to be interrupted
  38.       by lower priority IRQ even IRQF_DISABLED flag is not set.
  39.       This may be useful in embedded applications, where are strong
  40.       requirements for timing.
  41.       Say N here, unless you have a specialized requirement.
  42.  
  43. config MXC_TZIC
  44.     bool
  45.     depends on ARCH_MXC
  46.  
  47. config DMA_ZONE_SIZE
  48.     int "DMA memory zone size"
  49.     range 0 64
  50.     default 24
  51.     help
  52.       This is the size in MB for the DMA zone. The DMA zone is used for
  53.       dedicated memory for large contiguous video buffers
  54.  
  55. # set iff we need the 1504 transceiver code
  56. config ISP1504_MXC
  57.     bool
  58.     select ISP1504_MXC_OTG if USB_GADGET && USB_EHCI_HCD && USB_OTG
  59.     default y if USB_EHCI_FSL_1504 || USB_GADGET_FSL_1504
  60.  
  61. config ISP1504_MXC_OTG
  62.     tristate
  63.     help
  64.       Support for USB OTG pin detect using the ISP1504 transceiver on MXC platforms.
  65.  
  66. # set iff we need the UTMI transceiver code
  67. config UTMI_MXC
  68.     bool
  69.     select UTMI_MXC_OTG if ARCH_MX25 && USB_GADGET && USB_EHCI_HCD && USB_OTG
  70.     default y if USB_EHCI_FSL_UTMI || USB_GADGET_FSL_UTMI
  71.     depends on ARCH_MX51
  72.  
  73. config UTMI_MXC_OTG
  74.     tristate
  75.     help
  76.       Support for USB OTG pin detect using the UTMI transceiver on MXC platforms.
  77.  
  78. endif
  79.